EnableRequest

data class EnableRequest(maxScriptsCacheSize: Double?)

Represents request frame that can be used with Debugger#enable operation call.

Enables debugger for the given page. Clients should not assume that the debugging has been enabled until the result for this command is received.

See also

Constructors

EnableRequest
Link copied to clipboard
fun EnableRequest(maxScriptsCacheSize: Double? = null)

Properties

maxScriptsCacheSize
Link copied to clipboard
val maxScriptsCacheSize: Double? = null
The maximum size in bytes of collected scripts (not referenced by other heap objects) the debugger can hold.

Sources

jvm source
Link copied to clipboard